home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / FredFish PD 315.adf / Surf / menuexp.h < prev    next >
C/C++ Source or Header  |  1990-02-14  |  356b  |  17 lines

  1. #ifndef MENUEXP_H_FILE
  2. #define MENUEXP_H_FILE
  3.  
  4. #ifndef INTUITION_INTUITION_H
  5. #include <intuition/intuition.h>
  6. #endif  INTUITION_INTUITION_H
  7.  
  8.  
  9. extern USHORT *AbortDrawPtr;
  10. extern USHORT *DebugOnPtr;
  11.  
  12. #define AbortDraw (*AbortDrawPtr & CHECKED)
  13. #define ClrAbort() { *AbortDrawPtr &= ~CHECKED; }
  14. #define DebugOn (*DebugOnPtr & CHECKED)
  15.  
  16. #endif MENUEXP_H_FILE
  17.